home *** CD-ROM | disk | FTP | other *** search
/ Gekkan Dennou Club 145 / Gekkan Dennou Club - 2000.6 Vol. 145 (Japan).7z / Gekkan Dennou Club - 2000.6 Vol. 145 (Japan) (Track 1).bin / tools / sharp / xc2102.lzh / INCLUDE / GRAPH.H < prev    next >
Text File  |  1992-03-03  |  1KB  |  62 lines

  1. /*
  2.  * graph.h X68k XC Compiler v2.10 Copyright 1990,91,92 SHARP/Hudson
  3.  */
  4. #ifndef    __GRAPH_H
  5. #define    __GRAPH_H
  6.  
  7. #ifdef    FORWORD
  8. #define    __PROTO_TYPE
  9. #endif
  10. #ifdef    __STDC__
  11. #define    __PROTO_TYPE
  12. #endif
  13.  
  14. #ifdef    __PROTO_TYPE
  15.  
  16. void    apage(char);
  17. void    box(int, int, int, int, int, int);
  18. void    circle(int, int, int, int, int, int, int);
  19. void    contrast(int);
  20. void    fill(int, int, int, int, int);
  21. void    get(int, int, int, int, void *, int);
  22. void    home(int, int, int);
  23. int    hsv(int, int, int);
  24. void    line(int, int, int, int, int, int);
  25. void    paint(int, int, int);
  26. void    palet(int, int);
  27. int    point(int, int);
  28. void    pset(int, int, int);
  29. int    rgb(int, int, int);
  30. void    vpage(char);
  31. void    window(int, int, int, int);
  32. void    wipe(void);
  33. void    put(int, int, int, int, const void *, int);
  34. void    symbol(int, int, const char *, char, char, int, int, int);
  35.  
  36. #undef    __PROTO_TYPE
  37. #else
  38.  
  39. void    apage();
  40. void    box();
  41. void    circle();
  42. void    contrast();
  43. void    fill();
  44. void    get();
  45. void    home();
  46. int    hsv();
  47. void    line();
  48. void    paint();
  49. void    palet();
  50. int    point();
  51. void    pset();
  52. void    put();
  53. int    rgb();
  54. void    symbol();
  55. void    vpage();
  56. void    window();
  57. void    wipe();
  58.  
  59. #endif
  60.  
  61. #endif
  62.